home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / itrns211.zip / SRC / PRIPS < prev    next >
Text File  |  1991-08-30  |  528b  |  17 lines

  1. #!/bin/sh
  2. # Shell program to cat PostScript output files generated
  3. # from itrans (-P option). Prepends the font description file
  4. # and the prologue file. Assumes Devnagari Output............
  5.  
  6. # set LIBDIR to the itrans lib directory
  7. LIBDIR=/usr1/avinash/ITRANS/lib
  8.  
  9. # set DOCAT to empty if you want output on stdout, else 
  10. # assign to a pipe to the printer
  11. # DOCAT=
  12. # DOCAT="| lp"
  13. DOCAT="| lp -oh"
  14.  
  15. eval cat $LIBDIR/devnac.ps $LIBDIR/itrans.pro $* $DOCAT
  16. # eval need to evaluate the | char, if present, in DOCAT
  17.